home *** CD-ROM | disk | FTP | other *** search
- # buildit.sh
- # script to build cdrom image
- # copyright (c) 2001 joseph cheek. all rights reserved.
- # released under gpl
-
-
- # remove grub subdir
-
- rmdir grub
-
- # copy system map
-
- cp /boot/System.map* .
-
- # are the kernels the same? create a symlink
-
- if diff -q vml* &>/dev/null; then
- a=`echo vmlinuz-pc97-*`
- rm $a
- ln -s vm* $a
- fi
-